Carbon


DragInputProcPtr

Header: Drag.h Carbon status: Supported

typedef OSErr(* DragInputProcPtr) (
    Point *mouse, 
    SInt16 *modifiers, 
    void *dragInputRefCon, 
    DragRef theDrag
);

You would declare your function like this if you were to name it MyDragInputCallback:

OSErr MyDragInputCallback (
    Point *mouse, 
    SInt16 *modifiers, 
    void *dragInputRefCon, 
    DragRef theDrag
);
function result

A result code.


© 2000 Apple Computer, Inc. (Last Updated 7/13/2000)